bitkeeper revision 1.1404 (4284f02azzS42sTfwP_o4ofbShQYDA)
authorsmh22@firebug.cl.cam.ac.uk <smh22@firebug.cl.cam.ac.uk>
Fri, 13 May 2005 18:21:30 +0000 (18:21 +0000)
committersmh22@firebug.cl.cam.ac.uk <smh22@firebug.cl.cam.ac.uk>
Fri, 13 May 2005 18:21:30 +0000 (18:21 +0000)
sxpr_parser.c:
  fix build

tools/libxutil/sxpr_parser.c

index 870f68f1a1e9db88b15fa23609e766b452320d4d..f93d3505b2961b9f8ee3db069ac063f23fbcf5ad 100644 (file)
@@ -56,6 +56,7 @@
 static int state_start(Parser *p, char c);
 static int begin_start(Parser *p, char c);
 
+#if 0
 /** Print a parse error.
  *
  * @param in parser
@@ -83,6 +84,8 @@ static void wprintf(Parser *in, char *msg, ...){
         va_end(args);
     }
 }
+#endif
+
 
 /*============================================================================*/
 
@@ -134,6 +137,7 @@ static char *get_message(ParseErrorId id){
     return "";
 }
 
+#if 0
 /** Get the line number.
  *
  * @param in parser
@@ -149,6 +153,7 @@ static int get_line(Parser *in){
 static int get_column(Parser *in){
     return in->char_no;
 }
+#endif
 
 /** Get the line number the current token started on.
  *